home *** CD-ROM | disk | FTP | other *** search
/ Aminet 12 / Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso / Aminet / dev / c / PhoneLogDevKit.lha / PhoneLog / src / PhoneLogGenerator.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-16  |  491 b   |  13 lines

  1.  /* Copyright © 1996 Kai Hofmann. All rights reserved. */
  2.  
  3.  #include <stdio.h>
  4.  #include "PhoneLog.h"
  5.  
  6.  
  7.  FILE *OpenPhoneLog(const char *const name);
  8.  void ClosePhoneLog(FILE *const file);
  9.  void WritePhoneLogStartEntry(FILE *const file, const struct PhoneLogEntry *const item);
  10.  void WritePhoneLogEndEntry(FILE *const file, const struct PhoneLogEntry *const item);
  11.  void WritePhoneLogEntry(FILE *const file, const struct PhoneLogEntry *const item);
  12.  void WritePhoneLogMark(FILE *const file);
  13.